/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
}

/* Hero Section */
.hero{
    background:linear-gradient(135deg,#3983f1,#0dcaf0);
    color:#fff;
    padding:90px 0;
}

.hero h1{
    font-size:3rem;
    font-weight:700;
}

.hero p{
    font-size:1.1rem;
}

.hero img{
    max-width:100%;
    animation:float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float{
    
    0%{
        transform:translateY(0px);
    }
    
    50%{
        transform:translateY(-12px);
    }
    
    100%{
        transform:translateY(0px);
    }

}

/* Section Titles */
.section-title{
    font-size:2.2rem;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:35px;
    position:relative;
}

.section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:#ffc107;
    display:block;
    margin:12px auto 0;
    border-radius:5px;
}

/* Product Image */
.product-img{
    width:80%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:.4s;
}

.product-img:hover{
    transform:scale(1.03);
}

/* Feature Boxes */
.feature-box{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg,#0056ff,#00cfff);
}

.feature-box:hover h5,
.feature-box:hover p{
    color:#fff;
}

.feature-box:hover i{
    color:#fff;
}

.feature-box i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:15px;
}

.feature-box h5{
    font-weight:600;
    margin-bottom:15px;
}

/* Specification Table */
.table{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.table th{
    width:35%;
    background:#0d6efd;
    color:#fff;
    font-weight:600;
}

.table td{
    background:#fff;
}

/* Application Cards */
.application-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.application-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.application-card h5{
    color:#0d6efd;
    font-weight:600;
    margin-bottom:15px;
}

/* Buttons */
.btn-warning{
    font-weight:600;
    padding:12px 30px;
    border-radius:50px;
}

.btn-primary{
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
}

/* Contact Section */
#contact{
    background:#f8f9fa;
}

/* Footer */
.footer{
    background:#003366;
    color:#fff;
    padding:25px 0;
}

/* List Style */
ul{
    padding-left:20px;
}

ul li{
    margin-bottom:10px;
    font-size:16px;
}

/* Responsive */
@media(max-width:992px){
    
    .hero{
        text-align:center;
        padding:70px 0;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero img{
        margin-top:40px;
    }

    .section-title{
        font-size:2rem;
    }
    
}

@media(max-width:768px){
    
    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .section-title{
        font-size:1.7rem;
    }

    .feature-box{
        margin-bottom:20px;
    }

    .application-card{
        margin-bottom:20px;
    }

}

@media(max-width:576px){
    
    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:1.8rem;
    }

    .btn-lg{
        width:100%;
    }

    .table th,
    .table td{
        font-size:14px;
    }
    
}     